home *** CD-ROM | disk | FTP | other *** search
/ MACD 5 / MACD 5.bin / workbench / libs / unixlib.lha / unix / include / sys / uio.h < prev    next >
C/C++ Source or Header  |  1995-09-13  |  295b  |  18 lines

  1. #ifndef _SYS_UIO_H
  2. #define _SYS_UIO_H
  3. /*
  4.  *      The struct iovec is normally found
  5.  *      in Berkeley systems in <sys/uio.h>.
  6.  *      See the readv(2) and writev(2)
  7.  *      manual pages for details.
  8.  */
  9.  
  10. #include <sys/types.h>
  11.  
  12. struct iovec {
  13.     caddr_t iov_base;
  14.     int iov_len;
  15. };
  16.  
  17. #endif
  18.